02. Practice: Apply What You've Learned

Practice With Lists

Next, you will attempt 3 problems dealing with lists.

  1. Exploring List Properties: You'll explore the difference between concatenating two lists with the + operator and appending with .append(). You'll also be introduced to a new operator +=.
  2. Product List: You'll write code that multiplies all the numbers in a list together.
  3. Greatest: You'll write code that takes a list of numbers and returns the greatest number.